* {
        box-sizing: border-box;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


.header {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #f3e8ff 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f8bbd9;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}


.hero {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #f3e8ff 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    margin-top: 0;
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-primary {
    background-color: #f8bbd9;
    color: #374151;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #f472b6;
    transform: scale(1.05);
}


.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3f4f6 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
    margin-top: 0;
}

.section-title p {
    color: #6b7280;
    font-size: 18px;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 190px;
    background: linear-gradient(135deg, #f8bbd9 0%, #d1d5db 100%);
    display: flex;
    align-items: center; 
    justify-content: center;
    font-size: 80px;
    overflow: hidden; 
    border-radius: 20px; 
}

.service-icon img {
    height: 160px;
    width: 80px;
    display: flex;
    
    width: auto;
    object-fit: contain; 
    display: block;
    border-radius: 20px;

}


.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 24px;
}

.btn-secondary {
    background-color: #f472b6;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #ec4899;
}


.about {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
    margin-top: 0;
}

.about-content p {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 24px;
}

.stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #f472b6;
}

.stat-label {
    color: #6b7280;
}

.about-card {
    background: linear-gradient(135deg, #f472b6 0%, #6b7280 100%);
    border-radius: 16px;
    padding: 32px;
    color: white;
    text-align: center;
}

.about-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    margin-top: 0;
}

.about-card p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}


.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f472b6;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, #f472b6, #6b7280);
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(to right, #ec4899, #4b5563);
    transform: scale(1.05);
}

.contact-info {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 32px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    font-size: 20px;
}

.contact-details strong {
    color: #1f2937;
    display: block;
}

.contact-details span {
    color: #6b7280;
}

.social-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.social-section h4 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.social-buttons {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-size: 20px;
}


.social-btn.pinterest { 
    background-color: #be447d;
 
}


.social-btn:hover {
    transform: scale(1.1);
}


.floating-btn {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 1000;
}

.floating-main-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #f472b6, #6b7280);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.floating-main-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.floating-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 16px;
    transform: scale(0);
    transition: all 0.3s;
    transform-origin: bottom right;
    min-width: 192px;
}

.floating-menu.open {
    transform: scale(1);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    margin-bottom: 12px;
    transition: background-color 0.3s;
}

.menu-item:hover {
    background-color: #f3f4f6;
}

.menu-item:last-child {
    margin-bottom: 0;
}

.menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    font-size: 20px;
}


.footer {
    background-color: #1f2937;
    color: white;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.footer-section h3,
.footer-section h4 {
    margin-top: 0;
    margin-bottom: 16px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: bold;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
}

.footer-section p,
.footer-section ul {
    color: #9ca3af;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 32px;
    padding-top: 32px;
    text-align: center;
    color: #9ca3af;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
    }
    
.services-grid {
    grid-template-columns: 1fr;
}
}
 
.button-ins {
    background: transparent;
    position: relative;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 25px;
    outline: none;
    overflow: hidden;
    color: #0068fb;
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
    transition: 0.3s;
    }

.button-ins a {
    margin: 10px;
    text-decoration: none;
    color: #0068fb;
}


.button-ins::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.button-ins:hover {
    color: #0068fb;
    border: 1px solid black;
    transform: translateY(-5px);
}

.button-ins:hover::before {
    box-shadow: inset 0 0 0 10em black;
    
}
.btn-prim {
    background-color: #f8bbd9;
    color: #374151;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-prim:hover {
    background-color: #f472b6;
    transform: scale(1.05);
}
a{
    text-decoration: none;
}

